FML Operators
The following mathematical operators can be used in FML functions:
| + | addition |
| - | subtraction |
| * | multiplication |
| / | division |
| // | remainder of an integer division |
| \\ | integer quotient of a division |
| > | is greater than |
| >= | is greater than or equal to |
| < | is less than |
| <= | is less than or equal to |
| = | equals |
| <> | does not equal |
| & | and |
| | | or |